home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 8 / Power CD-ROM 8.iso / prgmming / oldutil / fastbat.txt < prev    next >
Text File  |  1994-12-10  |  4KB  |  109 lines

  1.                         SPEEDING UP BATCH FILES
  2.  
  3. Batch files make life a lot easier, but they are very slow.  Even when
  4. using batch files in RAM disks, execution time is quite noticeable.  It
  5. reminds me of the time when a batch file meant a batch of cards.  The
  6. techniques described here reduce the time required to execute batch
  7. file by as much as an order of magnitude.
  8.  
  9. Execution time is closely related to the number of lines rather than
  10. the number of characters.  To save time put as many commands on one
  11. line as possible.  Some ways to do this:
  12.  
  13. 1.  Instead of using a lot of lines for remarks, put what you have to
  14. say in a file and issue the batch command TYPE FILE.  TYPing a file
  15. takes less than 30% as long as echoing the same information from a
  16. batch file.
  17.  
  18. 2.  Instead of using a lot of lines to issue commands, put all the
  19. commands in a FOR subcommand.  For instance, your autoexec.bat file
  20. might start out
  21.                    fastdisk
  22.                    parint
  23.                    scrnsave
  24.                    spool 7
  25.                    sk
  26.                    c:
  27.  
  28. Instead, just say
  29.  
  30.     for %%f in (fastdisk parint scrnsave spool:7 sk c:) do %%f
  31.  
  32. This reduces six lines to one.  In Dos 2.1, but not in 3.0, you can
  33. eliminate spaces and slightly decrease execution time like this:
  34.  
  35.     for %%fin(fastdisk parint scrnsave spool:7 sk c:)do%%f
  36.  
  37. Note the colon between spool and 7.  You can't have any spaces within
  38. the parentheses except to denote the beginning of a new command.
  39.  
  40. 3.  When copying files use the FOR subcommand and wild cards like this:
  41.  
  42.     for %%fin(print v sp)docopy a:%%f???.*
  43.  
  44. The FOR subcommand does not support wild cards within the parentheses.
  45.  
  46. How much time the FOR subcommand will save, if any, depends on how the
  47. disk buffers are used while the subcommand is being executed.  DOS
  48. remembers the entire subcommand.  It doesn't have to go back to disk to
  49. read more of the subcommand as it goes along.  But DOS doesn't remember
  50. the contents of the batch file unless it is held in disk buffers.
  51. Whether or not the disk buffers keep the contents of the batch file
  52. depends on what you're doing between batch commands.
  53.  
  54. 4.  The IF subcommand supports conditional commands and the FOR
  55. subcommand.
  56. For instance, you
  57. might want to see if a file exists and, if it does, to run several
  58. programs and then to return to the menu; or, if it doesn't to display a
  59. message and return to the menu.
  60. A batch file for this task might look like this:
  61.  
  62.          If exist myufile goto programs
  63.          echo File does not exist.  Try again.
  64.          d:menu
  65.          :programs
  66.          myprog.ram
  67.          second.prg
  68.          third
  69.          d:menu
  70. But it will run faster like this:
  71.  
  72.     If exist myfile for %%fin(myprog.ram second.prg third d:menu)do%%f
  73.     for %%fin(echo d:menu)do%%f File does not exist.  Try again,
  74.  
  75. 5.  When a command processor is or another batch file is invoked, batch
  76. processing for the first batch is terminated.  You don't need to exit
  77. the batch file.  For example, in the batch file fragment below, the
  78. command GOTO GETOUT (and probably the label :GETOUT) is unnecessary and
  79. will increase execution time in some cases:
  80.             ..
  81.          command c:
  82.          goto to getout
  83.             ..
  84.             ..
  85.          :getout.
  86.  
  87. 6.  A fast way to get out of the middle of a batch file is to issue a
  88. command for another batch file, say a file called exit.  EXIT can contain
  89. only the command REM or just a dot or better yet nothing.  A file that
  90. contains nothing doesn't take up any disk space.  You can create such a
  91. file with another batch file, say autoexec.bat, by inserting this command
  92.  
  93.     for %%fin(echo rem)do%%f >d:exit.bat
  94.  
  95. The rem part of the command can be any command that doesn't look for
  96. parameters on the command line, e.g. cls or pause or sk.
  97.  
  98. 7.  Of course, running batch files from a RAM disk is a big help.  It's
  99. sometimes worth transferring control to a batch file that has been
  100. copied onto your RAM disk.  The time required for handling the batch
  101. operations in a RAM disk is less than a third of that required for a
  102. floppy.
  103.  
  104. 8.  Putting an end-of-file marker (ASCII 26 or Control Z) on the same
  105. line and immediately after the last command, will prevent annoying
  106. multiple prompts at the end of batch processing.
  107.  
  108. Bob Unferth                                           Wilmette, IL
  109.